home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / editors / mntemacs.zoo / src / config.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-04-06  |  3.8 KB  |  128 lines

  1. /* GNU Emacs site configuration template file.
  2.    Copyright (C) 1988, 1990 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU Emacs.
  5.  
  6. GNU Emacs is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY.  No author or distributor
  8. accepts responsibility to anyone for the consequences of using it
  9. or for whether it serves any particular purpose or works at all,
  10. unless he says so in writing.  Refer to the GNU Emacs General Public
  11. License for full details.
  12.  
  13. Everyone is granted permission to copy, modify and redistribute
  14. GNU Emacs, but only under the conditions described in the
  15. GNU Emacs General Public License.   A copy of this license is
  16. supposed to have been given to you along with GNU Emacs so you
  17. can know your rights and responsibilities.  It should be in a
  18. file named COPYING.  Among other things, the copyright notice
  19. and this notice must be preserved on all copies.  */
  20.  
  21.  
  22. /* Modified 1990 for 8-bit character support by Howard Gayle.
  23.  *  See chartab.c for details. */
  24.  
  25.  
  26. /**
  27.  ** (sjk)++ To work with bammi's library.
  28.  **/
  29. #define _setjmp  setjmp 
  30. #define _longjmp longjmp
  31.  
  32.  
  33. /* Include here a s- file that describes the system type you are using.
  34.    See the file ../etc/MACHINES for a list of systems and
  35.    the names of the s- files to use for them.
  36.    See s-template.h for documentation on writing s- files.  */
  37. #include "s-tos.h"
  38.  
  39. /* Include here a m- file that describes the machine and system you use.
  40.    See the file ../etc/MACHINES for a list of machines and
  41.    the names of the m- files to use for them.
  42.    See m-template.h for info on what m- files should define.
  43.    */
  44. #include "m-atari.h"
  45.  
  46. /* Load in the conversion definitions if this system
  47.    needs them and the source file being compiled has not
  48.    said to inhibit this.  There should be no need for you
  49.    to alter these lines.  */
  50.  
  51. #ifdef SHORTNAMES
  52. #ifndef NO_SHORTNAMES
  53. #include "../shortnames/remap.h"
  54. #endif /* not NO_SHORTNAMES */
  55. #endif /* SHORTNAMES */
  56.  
  57. /* Define HAVE_X_WINDOWS if you want to use the X window system.  */
  58.  
  59. /* #define HAVE_X_WINDOWS */
  60.  
  61. /* Define X11 if you want to use version 11 of X windows.
  62.    Otherwise, Emacs expects to use version 10.  */
  63.  
  64. /* #define X11 */
  65.  
  66. /* Define HAVE_X_MENU if you want to use the X window menu system.
  67.    This appears to work on some machines that support X
  68.    and not on others.  */
  69.  
  70. /* #define HAVE_X_MENU */
  71.  
  72. /* Define `subprocesses' should be defined if you want to
  73.    have code for asynchronous subprocesses
  74.    (as used in M-x compile and M-x shell).
  75.    These do not work for some USG systems yet;
  76.    for the ones where they work, the s-*.h file defines this flag.  */
  77.  
  78. #ifndef VMS
  79. #ifndef USG
  80. #define subprocesses
  81. #endif
  82. #endif
  83.  
  84. /* Define USER_FULL_NAME to return a string
  85.    that is the user's full name.
  86.    It can assume that the variable `pw'
  87.    points to the password file entry for this user.
  88.  
  89.    At some sites, the pw_gecos field contains
  90.    the user's full name.  If neither this nor any other
  91.    field contains the right thing, use pw_name,
  92.    giving the user's login name, since that is better than nothing.  */
  93.  
  94. #define USER_FULL_NAME pw->pw_gecos
  95.  
  96. /* Define AMPERSAND_FULL_NAME if you use the convention
  97.    that & in the full name stands for the login id.  */
  98.  
  99. /* #define AMPERSAND_FULL_NAME */
  100.  
  101. /* Maximum screen width we handle. */
  102.  
  103. #define MScreenWidth 150
  104.  
  105. /* Maximum screen length we handle. */
  106.  
  107. #define MScreenLength 150
  108.  
  109. /* # bytes of pure Lisp code to leave space for.
  110.    Note that s-vms.h and m-sun2.h may override this default.  */
  111.  
  112. #ifndef PURESIZE
  113. #ifdef HAVE_X_WINDOWS
  114. #define PURESIZE 152000
  115. #else
  116. #define PURESIZE 148000
  117. #endif
  118. #endif
  119.  
  120. /* Define HIGHPRI as a negative number
  121.    if you want Emacs to run at a higher than normal priority.
  122.    For this to take effect, you must install Emacs with setuid root.
  123.    Emacs will change back to the users's own uid after setting
  124.    its priority.  */
  125.  
  126. /* #define HIGHPRI */
  127.  
  128.